home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
lisp
/
eulisp
/
comp0_89.lha
/
Feel
/
Boot
/
CBoot
/
condition.em
< prev
next >
Wrap
Lisp/Scheme
|
1993-07-12
|
521b
|
37 lines
;; Eulisp Module
;; Author: pab
;; File: condition.em
;; Date: Sat Jul 3 17:55:35 1993
;;
;; Project:
;; Description:
;;
(defmodule condition
(init
gens
macros0
extras0
thread
)
()
(export <Internal-Error>
;;<wrong-cond-class>
signal
with-handler
conditionp
condition-message
error
cerror
;;defcondition
)
(defun signal (cond cont . thread)
(if (null thread)
(internal-signal cond cont)
(thread-signal cond cont (car thread))))
;; end module
)